home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1994 August: Tool Chest / Dev.CD Aug 94.toast / New System Software Extensions / OpenDoc A6 / OpenDoc Parts Framework / OPF / Found / FWString / Sources / FWWep.cpp < prev   
Encoding:
C/C++ Source or Header  |  1994-04-21  |  601 b   |  29 lines  |  [TEXT/MPS ]

  1. #if defined(FW_BUILD_WIN) && !defined(FW_BUILD_WIN32S) && !defined(FW_BUILD_WINNT)
  2. //========================================================================================
  3. //
  4. //    File:                FWWep.cpp
  5. //    Release Version:    $ 1.0d1 $
  6. //
  7. //    Creation Date:        3/28/94
  8. //
  9. //    Copyright:    © 1994 by Apple Computer, Inc., all rights reserved.
  10. //
  11. //========================================================================================
  12.  
  13. #include <Windows.h>
  14.  
  15. // prevent WEP from being mangled
  16.  
  17. extern "C"
  18. {
  19.     int CALLBACK WEP(int    /* sys_exit */);
  20. };
  21.  
  22. int CALLBACK WEP(int    /* sys_exit */)
  23. {
  24.     return TRUE;
  25. }
  26.  
  27. #endif
  28.  
  29.